Created
June 22, 2017 00:07
-
-
Save infinisil/c7baa023e700defcde322b1033202e70 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let | |
pkgs = import <nixpkgs> {}; | |
in | |
pkgs.stdenv.mkDerivation rec { | |
name = "scyther-${version}"; | |
version = "1.1.3"; | |
src = pkgs.fetchFromGitHub { | |
owner = "cascremers"; | |
repo = "scyther"; | |
rev = "v${version}"; | |
sha256 = "0rb4ha5bnjxnwj4f3hciq7kyj96fhw14hqbwl5kr9cdw8q62mx0h"; | |
}; | |
preConfigure = "cd src"; | |
buildPhase = '' | |
CMFLAGS="-D CMAKE_BUILD_TYPE:STRING=Release" | |
cmake $CMFLAGS -D TARGETOS=Unix && make | |
''; | |
buildInputs = with pkgs; [ | |
cmake | |
flex | |
bison | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment