os/pkgs/concourse.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
444 B
Nix
Raw Normal View History

2023-11-11 00:12:57 +00:00
self:
with self;
stdenv.mkDerivation rec {
pname = "concourse";
version = "7.10.0";
buildInputs = [
];
src = fetchTarball {
inherit version;
url = "https://github.com/concourse/concourse/releases/download/v${version}/concourse-${version}-linux-amd64.tgz";
sha256 = "";
};
phases = ["installPhase"];
installPhase = ''
mkdir -p $out/bin/
cp concourse/bin/* $out/bin/
'';
}