mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
24 lines
611 B
Nix
24 lines
611 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "schedtool";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "freequaos";
|
|
repo = "schedtool";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "1wdw6fnf9a01xfjhdah3mn8bp1bvahf2lfq74i6hk5b2cagkppyp";
|
|
};
|
|
|
|
makeFlags = [ "DESTDIR=$(out)" "DESTPREFIX=" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Query or alter a process' scheduling policy under Linux";
|
|
homepage = http://freequaos.host.sk/schedtool/;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|