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
29
pkgs/os-specific/linux/smem/default.nix
Normal file
29
pkgs/os-specific/linux/smem/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, stdenv, fetchurl, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "smem";
|
||||
version = "1.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://selenic.com/repo/smem/archive/${version}.tar.bz2";
|
||||
sha256 = "19ibv1byxf2b68186ysrgrhy5shkc5mc69abark1h18yigp3j34m";
|
||||
};
|
||||
|
||||
buildInputs = [ python3 ];
|
||||
|
||||
makeFlags = [ "smemcap" ];
|
||||
|
||||
installPhase =
|
||||
''
|
||||
install -Dm555 -t $out/bin/ smem smemcap
|
||||
install -Dm444 -t $out/share/man/man8/ smem.8
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.selenic.com/smem/";
|
||||
description = "A memory usage reporting tool that takes shared memory into account";
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ lib.maintainers.eelco ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue