tinc-haskell: init at 20160419
This commit is contained in:
parent
f508c6a0d1
commit
f1492bf44c
41
pkgs/development/tools/misc/tinc/default.nix
Normal file
41
pkgs/development/tools/misc/tinc/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ mkDerivation, aeson, base, bytestring, Cabal, containers
|
||||||
|
, directory, exceptions, filelock, filepath, gitrev, graph-wrapper
|
||||||
|
, hpack, hspec, HUnit, language-dot, mockery, parsec, process
|
||||||
|
, QuickCheck, safe, stdenv, temporary, time, transformers, unix
|
||||||
|
, unix-compat, with-location, yaml, fetchFromGitHub
|
||||||
|
, ghc, cabal2nix, cabal-install, makeWrapper
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "tinc";
|
||||||
|
version = "20160419";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sol";
|
||||||
|
repo = "tinc";
|
||||||
|
rev = "b9f7cc1076098b1f99f20655052c9fd34598d891";
|
||||||
|
sha256 = "1f0k7a4vxdd2cd2h5qwska9hfw7ig6q2rx87d09fg2xlix96g81r";
|
||||||
|
};
|
||||||
|
isLibrary = false;
|
||||||
|
isExecutable = true;
|
||||||
|
executableHaskellDepends = [
|
||||||
|
aeson base bytestring Cabal containers directory exceptions
|
||||||
|
filelock filepath gitrev graph-wrapper hpack language-dot parsec
|
||||||
|
process temporary time transformers unix-compat with-location yaml
|
||||||
|
];
|
||||||
|
testHaskellDepends = [
|
||||||
|
aeson base bytestring Cabal containers directory exceptions
|
||||||
|
filelock filepath gitrev graph-wrapper hpack hspec HUnit
|
||||||
|
language-dot mockery parsec process QuickCheck safe temporary time
|
||||||
|
transformers unix unix-compat with-location yaml
|
||||||
|
];
|
||||||
|
postInstall = ''
|
||||||
|
source ${makeWrapper}/nix-support/setup-hook
|
||||||
|
wrapProgram $out/bin/tinc \
|
||||||
|
--prefix PATH : '${ghc}/bin' \
|
||||||
|
--prefix PATH : '${cabal2nix}/bin' \
|
||||||
|
--prefix PATH : '${cabal-install}/bin'
|
||||||
|
'';
|
||||||
|
description = "A dependency manager for Haskell";
|
||||||
|
homepage = "https://github.com/sol/tinc#readme";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.robbinch ];
|
||||||
|
}
|
@ -6302,6 +6302,8 @@ in
|
|||||||
|
|
||||||
texi2html = callPackage ../development/tools/misc/texi2html { };
|
texi2html = callPackage ../development/tools/misc/texi2html { };
|
||||||
|
|
||||||
|
tinc-haskell = haskellPackages.callPackage ../development/tools/misc/tinc { };
|
||||||
|
|
||||||
travis = callPackage ../development/tools/misc/travis { };
|
travis = callPackage ../development/tools/misc/travis { };
|
||||||
|
|
||||||
tweak = callPackage ../applications/editors/tweak { };
|
tweak = callPackage ../applications/editors/tweak { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user