nixpkgs/pkgs/os-specific/linux/smem/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

34 lines
735 B
Nix

{ lib, stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
name = "smem-1.4";
src = fetchurl {
url = "https://www.selenic.com/smem/download/${name}.tar.gz";
sha256 = "1v31vy23s7szl6vdrllq9zbg58bp36jf5xy3fikjfg6gyiwgia9f";
};
buildInputs = [ python ];
buildPhase =
''
gcc -O2 smemcap.c -o smemcap
'';
installPhase =
''
mkdir -p $out/bin
cp smem smemcap $out/bin/
mkdir -p $out/share/man/man8
cp smem.8 $out/share/man/man8/
'';
meta = {
homepage = http://www.selenic.com/smem/;
description = "A memory usage reporting tool that takes shared memory into account";
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.eelco ];
};
}