mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Add sproxy-web
This commit is contained in:
parent
331d234ef6
commit
79c9d556e0
26
pkgs/tools/networking/sproxy-web/default.nix
Normal file
26
pkgs/tools/networking/sproxy-web/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ cabal, aeson, blazeHtml, blazeMarkup, configurator, hflags
|
||||
, httpTypes, mtl, postgresqlSimple, resourcePool, scotty, text
|
||||
, waiExtra, waiMiddlewareStatic, fetchurl
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "sproxy-web";
|
||||
version = "0.1.0.2";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/zalora/sproxy-web/archive/0.1.0.2.tar.gz";
|
||||
sha256 = "1rdzglvsas0rdgq3j5c9ll411yk168x7v3l7w8zdjgafa947j4d4";
|
||||
};
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
aeson blazeHtml blazeMarkup configurator hflags httpTypes mtl
|
||||
postgresqlSimple resourcePool scotty text waiExtra
|
||||
waiMiddlewareStatic
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://bitbucket.org/zalorasea/sproxy-web";
|
||||
description = "Web interface to sproxy";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1953,6 +1953,8 @@ let
|
|||
|
||||
sproxy = haskellPackages.callPackage ../tools/networking/sproxy { };
|
||||
|
||||
sproxy-web = haskellPackages.callPackage ../tools/networking/sproxy-web { };
|
||||
|
||||
stardict = callPackage ../applications/misc/stardict/stardict.nix {
|
||||
inherit (gnome) libgnomeui scrollkeeper;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue