mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
11 lines
350 B
Nix
11 lines
350 B
Nix
{ mkDerivation, base, stdenv }:
|
|
mkDerivation {
|
|
pname = "dependent-sum";
|
|
version = "0.4";
|
|
sha256 = "a8deecb4153a1878173f8d0a18de0378ab068bc15e5035b9e4cb478e8e4e1a1e";
|
|
libraryHaskellDepends = [ base ];
|
|
homepage = "https://github.com/mokus0/dependent-sum";
|
|
description = "Dependent sum type";
|
|
license = stdenv.lib.licenses.publicDomain;
|
|
}
|