mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
Merge pull request #3133 from deepfire/haskell-yampa
haskellPackages.Yampa: new expression
This commit is contained in:
commit
0b1b4e5870
14
pkgs/development/libraries/haskell/Yampa/default.nix
Normal file
14
pkgs/development/libraries/haskell/Yampa/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, random }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "Yampa";
|
||||
version = "0.9.5";
|
||||
sha256 = "0r6fm2ccls7gbc5s0vbrzrqv6marnzlzc7zr4afkgfk9jsqfmqjh";
|
||||
buildDepends = [ random ];
|
||||
meta = {
|
||||
homepage = "http://www.haskell.org/haskellwiki/Yampa";
|
||||
description = "Library for programming hybrid systems";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -2567,6 +2567,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
xssSanitize = callPackage ../development/libraries/haskell/xss-sanitize {};
|
||||
|
||||
Yampa = callPackage ../development/libraries/haskell/Yampa {};
|
||||
|
||||
yaml = callPackage ../development/libraries/haskell/yaml {};
|
||||
|
||||
yamlLight = callPackage ../development/libraries/haskell/yaml-light {};
|
||||
|
Loading…
Reference in New Issue
Block a user