1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/exempi/default.nix

21 lines
519 B
Nix
Raw Normal View History

{ stdenv, fetchurl, expat, zlib, boost }:
stdenv.mkDerivation rec {
2014-09-19 19:31:41 +01:00
name = "exempi-2.2.2";
src = fetchurl {
url = "http://libopenraw.freedesktop.org/download/${name}.tar.bz2";
2014-09-19 19:31:41 +01:00
sha256 = "01vcd1mfn2s0iiq2cjyzgvnxx6kcq9cwra1iipijhs0vwvjx0yhf";
};
configureFlags = [ "--with-boost=${boost}" ];
2014-09-19 19:31:41 +01:00
buildInputs = [ expat zlib boost boost.lib ];
meta = with stdenv.lib; {
2014-09-19 19:31:41 +01:00
homepage = http://libopenraw.freedesktop.org/wiki/Exempi/;
platforms = platforms.linux;
license = licenses.bsd3;
};
}