nixpkgs/pkgs/desktops/gnome-2.28/platform/libunique/default.nix
Michael Raskin 48db154dbb Oops. A typo in a fix for a fix of a typo..
svn path=/nixpkgs/trunk/; revision=17529
2009-09-30 06:35:09 +00:00

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 ];
}