nixpkgs/pkgs/development/libraries/exempi/default.nix

23 lines
519 B
Nix
Raw Normal View History

{ stdenv, fetchurl, expat, zlib, boost }:
stdenv.mkDerivation rec {
2014-09-19 18:31:41 +00:00
name = "exempi-2.2.2";
src = fetchurl {
url = "http://libopenraw.freedesktop.org/download/${name}.tar.bz2";
2014-09-19 18:31:41 +00:00
sha256 = "01vcd1mfn2s0iiq2cjyzgvnxx6kcq9cwra1iipijhs0vwvjx0yhf";
};
2015-07-27 20:04:20 +00:00
configureFlags = [
"--with-boost=${boost.dev}"
];
2014-10-11 08:51:47 +00:00
2014-10-01 19:55:40 +00:00
buildInputs = [ expat zlib boost ];
meta = with stdenv.lib; {
2014-09-19 18:31:41 +00:00
homepage = http://libopenraw.freedesktop.org/wiki/Exempi/;
platforms = platforms.linux;
license = licenses.bsd3;
};
}