bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
29 lines
1.1 KiB
Nix
29 lines
1.1 KiB
Nix
{ mkDerivation, base, binary, bytestring, bytestring-trie, cmdargs
|
|
, containers, directory, elm-compiler, elm-package, fetchgit
|
|
, filepath, haskeline, HUnit, mtl, parsec, QuickCheck, stdenv
|
|
, test-framework, test-framework-hunit, test-framework-quickcheck2
|
|
}:
|
|
mkDerivation {
|
|
pname = "elm-repl";
|
|
version = "0.17";
|
|
src = fetchgit {
|
|
url = "https://github.com/elm-lang/elm-repl";
|
|
sha256 = "0bpmkm7q3a0h4hwlbwcnzaqgf6n5p1qw65z8kw84f52s5bndc0wc";
|
|
rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d";
|
|
};
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [
|
|
base binary bytestring bytestring-trie cmdargs containers directory
|
|
elm-compiler elm-package filepath haskeline mtl parsec
|
|
];
|
|
testHaskellDepends = [
|
|
base bytestring bytestring-trie cmdargs directory elm-compiler
|
|
elm-package filepath haskeline HUnit mtl parsec QuickCheck
|
|
test-framework test-framework-hunit test-framework-quickcheck2
|
|
];
|
|
jailbreak = true;
|
|
homepage = "https://github.com/elm-lang/elm-repl";
|
|
description = "A REPL for Elm";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|