mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
22 lines
618 B
Nix
22 lines
618 B
Nix
{ mkDerivation, base, directory, filepath, optparse-applicative
|
|
, posix-escape, split, stdenv, unix, fetchFromGitHub
|
|
}:
|
|
mkDerivation {
|
|
pname = "intero-nix-shim";
|
|
version = "0.1.2";
|
|
src = fetchFromGitHub {
|
|
owner = "michalrus";
|
|
repo = "intero-nix-shim";
|
|
rev = "0.1.2";
|
|
sha256 = "0p1h3w15bgvsbzi7f1n2dxxxz9yq7vmbxmww5igc5d3dm76skgzg";
|
|
};
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [
|
|
base directory filepath optparse-applicative posix-escape split
|
|
unix
|
|
];
|
|
homepage = "https://github.com/michalrus/intero-nix-shim";
|
|
license = stdenv.lib.licenses.asl20;
|
|
}
|