New Haskell package: CodecImageDevIL, bindings to libdevil

This commit is contained in:
Rickard Nilsson
2013-11-27 13:46:57 +01:00
parent 9d02e36ec7
commit ce2732f2f2
2 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, libdevil }:
cabal.mkDerivation (self: {
pname = "Codec-Image-DevIL";
version = "0.2.3";
sha256 = "1kv3hns9f0bhfb723nj9szyz3zfqpvy02azzsiymzjz4ajhqmrsz";
buildDepends = [ libdevil ];
meta = {
homepage = "http://hackage.haskell.org/package/Codec-Image-DevIL";
description = "Simple FFI interface to the DevIL image library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})