sispmctl: init at 4.11
This commit is contained in:
parent
997500c688
commit
57da038a87
1 changed files with 33 additions and 0 deletions
33
pkgs/by-name/si/sispmctl/package.nix
Normal file
33
pkgs/by-name/si/sispmctl/package.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, libusb-compat-0_1
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sispmctl";
|
||||
version = "4.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/sispmctl/sispmctl-${version}.tar.gz";
|
||||
hash = "sha256-dLlKNxAEaxUHDHMR8MrLgVVMhrQidxnMJzPLlscFJXg=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libusb-compat-0_1
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://sispmctl.sourceforge.net/";
|
||||
description = "USB controlled powerstrips management software";
|
||||
license = licenses.gpl2Plus;
|
||||
mainProgram = "sispmctl";
|
||||
maintainers = [ maintainers._9R ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue