Skip to content

Commit

Permalink
samurai: init at 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzWill committed Jan 6, 2020
1 parent ff16d17 commit 80f043b
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/tools/build-managers/samurai/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10476,6 +10476,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 { };
Expand Down

0 comments on commit 80f043b

Please sign in to comment.