38 lines
1.3 KiB
Nix
38 lines
1.3 KiB
Nix
{ mkDerivation, ansi-wl-pprint, base, Cabal, containers
|
|
, distribution-nixpkgs, language-nix, lens, optparse-applicative
|
|
, pretty, pretty-show, stdenv, text, yaml
|
|
, nix-prefetch-scripts, makeWrapper, fetchFromGitHub
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "cabal2nix";
|
|
version = "20160406";
|
|
src = fetchFromGitHub {
|
|
owner = "nixos";
|
|
repo = "cabal2nix";
|
|
rev = "v${version}";
|
|
sha256 = "02dn2zllanf3rl16ny17j80h7p6gcdqkhadh3ypkr38gd9w16pc6";
|
|
};
|
|
postUnpack = "sourceRoot+=/${pname}";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
enableSharedExecutables = false;
|
|
executableHaskellDepends = [
|
|
ansi-wl-pprint base Cabal containers distribution-nixpkgs
|
|
language-nix lens optparse-applicative pretty pretty-show text yaml
|
|
];
|
|
executableToolDepends = [ makeWrapper ];
|
|
postInstall = ''
|
|
exe=$out/libexec/${pname}-${version}/${pname}
|
|
install -D $out/bin/${pname} $exe
|
|
rm -rf $out/{bin,lib,share}
|
|
makeWrapper $exe $out/bin/${pname} --prefix PATH ":" "${nix-prefetch-scripts}/bin"
|
|
mkdir -p $out/share/bash-completion/completions
|
|
$exe --bash-completion-script $exe >$out/share/bash-completion/completions/${pname}
|
|
'';
|
|
homepage = "https://github.com/nixos/cabal2nix#readme";
|
|
description = "Convert Cabal files into Nix build instructions";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
maintainers = with stdenv.lib.maintainers; [ peti ];
|
|
}
|