Created
May 16, 2019 11:38
-
-
Save Jomik/f3f3902ee8f39b6247a11fdd8ba6a20b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ lib, pkgs }: | |
pkgs.stdenv.mkDerivation { | |
name = "lslint"; | |
buildInputs = with pkgs; [ bison flex ]; | |
nativeBuildInputs = with pkgs; [ ]; | |
src = pkgs.fetchFromGitHub { | |
owner = "Makopo"; | |
repo = "lslint"; | |
rev = "d9af2b3e9f8b23633a4a1db5f051287e94efeeb4"; | |
sha256 = "1fhkmiznbzld1i6r7lmc7gdyjay82s8kbg9sh9lfd8nfkirkqrxn"; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment