e60fe8673b
gnome28 was a mix of packages from various releases, so do not mention 2.28 in the attribute name. svn path=/nixpkgs/trunk/; revision=29721
11 lines
306 B
Nix
11 lines
306 B
Nix
{stdenv, fetchurl, pkgconfig, gettext, gtk}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libunique-1.1.2";
|
|
src = fetchurl {
|
|
url = mirror://gnome/sources/libunique/1.1/libunique-1.1.2.tar.bz2;
|
|
sha256 = "0vhcbw4ccc58xhs99r6bkabrzbayyq2qk01xm8vv4hpwjl117yvk";
|
|
};
|
|
buildInputs = [ pkgconfig gettext gtk ];
|
|
}
|