Files
nixpkgs/pkgs/development/libraries/libnih/default.nix
T

22 lines
580 B
Nix
Raw Normal View History

2010-02-15 15:55:39 +00:00
{ stdenv, fetchurl, pkgconfig, dbus, expat }:
2011-07-24 23:44:15 +00:00
let version = "1.0.3"; in
2010-02-15 15:55:39 +00:00
stdenv.mkDerivation rec {
name = "libnih-${version}";
src = fetchurl {
url = "http://code.launchpad.net/libnih/1.0/${version}/+download/libnih-${version}.tar.gz";
2011-07-24 23:44:15 +00:00
sha256 = "01glc6y7z1g726zwpvp2zm79pyb37ki729jkh45akh35fpgp4xc9";
2010-02-15 15:55:39 +00:00
};
buildInputs = [ pkgconfig dbus expat ];
2011-07-24 23:44:15 +00:00
2010-02-15 15:55:39 +00:00
meta = {
description = "A small library for C application development";
homepage = https://launchpad.net/libnih;
license = stdenv.lib.licenses.gpl2;
2016-08-02 20:50:55 +03:00
platforms = stdenv.lib.platforms.linux;
2010-02-15 15:55:39 +00:00
};
}