nixpkgs/pkgs/tools/X11/xrestop/default.nix
Pascal Wittmann 11ae720974
xrestop: add license
see issue #43716
2018-07-22 17:01:46 +02:00

20 lines
482 B
Nix

{ stdenv, fetchurl, xorg, pkgconfig, ncurses }:
stdenv.mkDerivation rec {
name = "xrestop-${version}";
version = "0.4";
src = fetchurl {
url = mirror://gentoo/distfiles/xrestop-0.4.tar.gz;
sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ xorg.libX11 xorg.libXres xorg.libXext ncurses ];
meta = {
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.gpl2;
};
}