summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/pathtype
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-03-23 15:57:58 +0000
committerPeter Simons <simons@cryp.to>2011-03-23 15:57:58 +0000
commit2e24a92971d6d4aebb3e03fcd4f449af9c82382e (patch)
treed1a0ea8fe414b877a00a12af3b91dd2c6ef3b4b7 /pkgs/development/libraries/haskell/pathtype
parent789f14c0b78c3357a4966b496657570303175e20 (diff)
pathtype: added initial version 0.5.2
svn path=/nixpkgs/trunk/; revision=26471
Diffstat (limited to 'pkgs/development/libraries/haskell/pathtype')
-rw-r--r--pkgs/development/libraries/haskell/pathtype/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/pathtype/default.nix b/pkgs/development/libraries/haskell/pathtype/default.nix
new file mode 100644
index 0000000000000..d073f3d9290ca
--- /dev/null
+++ b/pkgs/development/libraries/haskell/pathtype/default.nix
@@ -0,0 +1,13 @@
+{cabal, QuickCheck2}:
+
+cabal.mkDerivation (self : {
+  pname = "pathtype";
+  version = "0.5.2";
+  sha256 = "0rbmq6kzz2l07q9a5k888scpn62hnw2hmzz4ysprhfgdnn5b2cvi";
+  propagatedBuildInputs = [QuickCheck2];
+  meta = {
+    license = "BSD";
+    description = "Type-safe file path manipulations";
+    maintainer = [self.stdenv.lib.maintainers.simons];
+  };
+})