1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 15:58:36 +00:00

Merge pull request #77140 from dtzWill/feature/samurai

samurai: init at 1.0
This commit is contained in:
Will Dietz 2020-02-13 00:24:39 -06:00 committed by GitHub
commit 18d9cc22c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "samurai";
version = "1.0";
src = fetchFromGitHub {
owner = "michaelforney";
repo = pname;
rev = version;
sha256 = "1jsxfpwa6q893x18qlvpsiym29rrw5cj0k805wgmk2n57j9rw4f2";
};
makeFlags = [ "DESTDIR=" "PREFIX=${placeholder "out"}" ];
meta = with stdenv.lib; {
description = "ninja-compatible build tool written in C";
homepage = "https://github.com/michaelforney/samurai";
license = with licenses; [ mit asl20 ]; # see LICENSE
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -10525,6 +10525,8 @@ in
rr = callPackage ../development/tools/analysis/rr { };
samurai = callPackage ../development/tools/build-managers/samurai { };
saleae-logic = callPackage ../development/tools/misc/saleae-logic { };
sauce-connect = callPackage ../development/tools/sauce-connect { };