mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
Import the Haskell library shellish 0.1.3 from Cabal
This commit is contained in:
parent
d2e731e111
commit
9f66dafa29
14
pkgs/development/libraries/haskell/shellish/default.nix
Normal file
14
pkgs/development/libraries/haskell/shellish/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ cabal, filepath, mtl, strict, time, unixCompat }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "shellish";
|
||||
version = "0.1.4";
|
||||
sha256 = "1ldwid270mwyky6zmggbvn72hvs4s39hhf2zj8r0jahxnwlpbfan";
|
||||
buildDepends = [ filepath mtl strict time unixCompat ];
|
||||
meta = {
|
||||
homepage = "http://repos.mornfall.net/shellish";
|
||||
description = "shell-/perl- like (systems) programming in Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2009,6 +2009,9 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
setlocale = callPackage ../development/libraries/haskell/setlocale {};
|
||||
|
||||
|
||||
shellish = callPackage ../development/libraries/haskell/shellish {};
|
||||
|
||||
shellmate = callPackage ../development/libraries/haskell/shellmate {};
|
||||
|
||||
shelly_0_15_4_1 = callPackage ../development/libraries/haskell/shelly/0.15.4.1.nix {};
|
||||
|
|
Loading…
Reference in a new issue