uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
26
pkgs/development/tools/analysis/swarm/default.nix
Normal file
26
pkgs/development/tools/analysis/swarm/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "swarm";
|
||||
version = "unstable-2019-03-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nimble-code";
|
||||
repo = "swarm";
|
||||
rev = "4b36ed83c8fbb074f2dc5777fe1c0ab4d73cc7d9";
|
||||
sha256 = "18zwlwsiiksivjpg6agmbmg0zsw2fl9475ss66b6pgcsya2q4afs";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 Src/swarm $out/bin/swarm
|
||||
install -Dm644 Doc/swarm.1 $out/share/man/man1/swarm.1
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Verification script generator for Spin";
|
||||
homepage = "http://spinroot.com/";
|
||||
license = licenses.free;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue