Add haskell-qrencode

This commit is contained in:
Alexander Foremny
2013-07-20 10:56:51 +02:00
parent 6e97ea6b00
commit f2f0674c5b
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ cabal, qrencode }:
cabal.mkDerivation (self: {
pname = "haskell-qrencode";
version = "1.0.4";
sha256 = "1cq6fpz4vsx1kfnxnxnqz0pi5nzfg86s76vd0hcqvyqxnqbcd8hj";
extraLibraries = [ qrencode ];
meta = {
homepage = "https://github.com/jamessanders/haskell-qrencode";
description = "Haskell bindings for libqrencode";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})