mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
16 lines
387 B
Nix
16 lines
387 B
Nix
{stdenv, fetchurl, flex, bison, pkg-config, glib, gettext}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libIDL-${minVer}.14";
|
|
minVer = "0.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/libIDL/${minVer}/${name}.tar.bz2";
|
|
sha256 = "08129my8s9fbrk0vqvnmx6ph4nid744g5vbwphzkaik51664vln5";
|
|
};
|
|
|
|
buildInputs = [ glib gettext ];
|
|
|
|
nativeBuildInputs = [ flex bison pkg-config ];
|
|
}
|