Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
613 B
Nix
40 lines
613 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
gtk2,
|
|
intltool,
|
|
libart_lgpl,
|
|
libglade,
|
|
glib,
|
|
}:
|
|
|
|
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"
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
buildInputs = [ libglade ];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
intltool
|
|
glib
|
|
];
|
|
propagatedBuildInputs = [
|
|
libart_lgpl
|
|
gtk2
|
|
];
|
|
}
|