mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
lirc: update from 0.9.0 to 0.9.1, add meta information and adopt it
This commit is contained in:
parent
408832ac67
commit
5c3c7574e2
@ -1,18 +1,30 @@
|
||||
{ stdenv, fetchurl, alsaLib }:
|
||||
{ stdenv, fetchurl, alsaLib, bash, help2man }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lirc-0.9.0";
|
||||
name = "lirc-0.9.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/lirc/${name}.tar.bz2";
|
||||
sha256 = "1zx4mcnjwzz6jsi6ln7a3dkgx05nvg1pxxvmjqvd966ldapay8v3";
|
||||
sha256 = "0vakq9x10hyj9k7iv35sm5f4dhxvk0miwxvv6kn0bhwkr2mnapj6";
|
||||
};
|
||||
|
||||
buildInputs = [ alsaLib ];
|
||||
preBuild = "patchShebangs .";
|
||||
|
||||
buildInputs = [ alsaLib help2man ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-driver=devinput"
|
||||
"--sysconfdir=$(out)/etc"
|
||||
"--enable-sandboxed"
|
||||
];
|
||||
|
||||
makeFlags = [ "m4dir=$(out)/m4" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Allows to receive and send infrared signals";
|
||||
homepage = http://www.lirc.org/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user