summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unix-compat
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-09-02 18:24:27 +0000
committerPeter Simons <simons@cryp.to>2011-09-02 18:24:27 +0000
commit6295090cc6557494b0e200b3866110472c2610cc (patch)
tree50777b0186b18630fe5f2d1068f44f3acb2b50a6 /pkgs/development/libraries/haskell/unix-compat
parentfb05c340514ebf2808cafad88de1dd6333655eed (diff)
downloadnixpkgs-6295090cc6557494b0e200b3866110472c2610cc.tar
nixpkgs-6295090cc6557494b0e200b3866110472c2610cc.tar.gz
nixpkgs-6295090cc6557494b0e200b3866110472c2610cc.tar.bz2
nixpkgs-6295090cc6557494b0e200b3866110472c2610cc.tar.lz
nixpkgs-6295090cc6557494b0e200b3866110472c2610cc.tar.xz
nixpkgs-6295090cc6557494b0e200b3866110472c2610cc.tar.zst
nixpkgs-6295090cc6557494b0e200b3866110472c2610cc.zip
haskell-unix-compat: added version 0.3
svn path=/nixpkgs/trunk/; revision=28984
Diffstat (limited to 'pkgs/development/libraries/haskell/unix-compat')
-rw-r--r--pkgs/development/libraries/haskell/unix-compat/0.2.2.1.nix (renamed from pkgs/development/libraries/haskell/unix-compat/default.nix)0
-rw-r--r--pkgs/development/libraries/haskell/unix-compat/0.3.nix17
2 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/unix-compat/default.nix b/pkgs/development/libraries/haskell/unix-compat/0.2.2.1.nix
index 34cbd4072f6..34cbd4072f6 100644
--- a/pkgs/development/libraries/haskell/unix-compat/default.nix
+++ b/pkgs/development/libraries/haskell/unix-compat/0.2.2.1.nix
diff --git a/pkgs/development/libraries/haskell/unix-compat/0.3.nix b/pkgs/development/libraries/haskell/unix-compat/0.3.nix
new file mode 100644
index 00000000000..da13c9313ac
--- /dev/null
+++ b/pkgs/development/libraries/haskell/unix-compat/0.3.nix
@@ -0,0 +1,17 @@
+{ cabal }:
+
+cabal.mkDerivation (self: {
+  pname = "unix-compat";
+  version = "0.3";
+  sha256 = "0zgz9s5z2kca37sgnf4dyfdw90435h20bznx485y1ggvh377jan7";
+  meta = {
+    homepage = "http://github.com/jystic/unix-compat";
+    description = "Portable POSIX-compatibility layer";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
+  };
+})