mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
460 B
Nix
15 lines
460 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "bitmap";
|
|
version = "0.0.2";
|
|
sha256 = "1flrfbrsnlcal7qyvl1wb0p8c14w0mvvkmgs7d943jqnlh4gay5m";
|
|
meta = {
|
|
homepage = "http://code.haskell.org/~bkomuves/";
|
|
description = "A library for handling and manipulating bitmaps (rectangular pixel arrays)";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|