mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
14 lines
357 B
Nix
14 lines
357 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "interlude";
|
|
version = "0.1.2";
|
|
sha256 = "1yiv24n0mfjzbpm9p6djllhwck3brjz9adzyp6k4fpk430304k7s";
|
|
meta = {
|
|
homepage = "http://malde.org/~ketil/";
|
|
description = "Replaces some Prelude functions for enhanced error reporting";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|