1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-04 22:34:04 +00:00
nixpkgs/pkgs/development/libraries/haskell/vacuum/default.nix

19 lines
522 B
Nix
Raw Normal View History

{ cabal, ghcPaths }:
cabal.mkDerivation (self: {
pname = "vacuum";
version = "2.1.0.1";
sha256 = "0gzh5v9mr0mgz9hxjnm8n3jcl2702wad7qaqaar1zc95lkabpf65";
extraLibraries = [ ghcPaths ];
meta = {
homepage = "http://thoughtpolice.github.com/vacuum";
description = "Graph representation of the GHC heap";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})