mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
18 lines
527 B
Nix
18 lines
527 B
Nix
{ lib, stdenv, fetchurl, pkg-config, gtk2, intltool, libart_lgpl, libglade }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgnomecanvas";
|
|
version = "2.30.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libgnomecanvas/${lib.versions.majorMinor version}/libgnomecanvas-${version}.tar.bz2";
|
|
sha256 = "0h6xvswbqspdifnyh5pm2pqq55yp3kn6yrswq7ay9z49hkh7i6w5";
|
|
};
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
buildInputs = [ libglade ];
|
|
nativeBuildInputs = [ pkg-config intltool ];
|
|
propagatedBuildInputs = [ libart_lgpl gtk2 ];
|
|
}
|