depot/third_party/nixpkgs/pkgs/development/tools/github/github-release/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

52 lines
1.7 KiB
Nix

{ lib, stdenv, system, fetchurl }:
let
linuxPredicate = system == "x86_64-linux";
bsdPredicate = system == "x86_64-freebsd";
darwinPredicate = system == "x86_64-darwin";
metadata = assert linuxPredicate || bsdPredicate || darwinPredicate;
if linuxPredicate then
{ arch = "linux-amd64";
sha256 = "0p0qj911nmmdj0r7wx3363gid8g4bm3my6mj3d6s4mwgh9lfisiz";
archiveBinaryPath = "linux/amd64"; }
else if bsdPredicate then
{ arch = "freebsd-amd64";
sha256 = "0g618y9n39j11l1cbhyhwlbl2gv5a2a122c1dps3m2wmv7yzq5hk";
archiveBinaryPath = "freebsd/amd64"; }
else
{ arch = "darwin-amd64";
sha256 = "0l623fgnsix0y3f960bwx3dgnrqaxs21w5652kvaaal7dhnlgmwj";
archiveBinaryPath = "darwin/amd64"; };
in stdenv.mkDerivation rec {
shortname = "github-release";
name = "${shortname}-${version}";
version = "0.7.2";
src = fetchurl {
url = "https://github.com/aktau/github-release/releases/download/v${version}/${metadata.arch}-${shortname}.tar.bz2";
sha256 = metadata.sha256;
};
buildInputs = [ ];
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
mkdir -p "$out/bin"
cp "${metadata.archiveBinaryPath}/github-release" "$out/bin/"
'';
meta = with lib; {
description = "Commandline app to create and edit releases on Github (and upload artifacts)";
longDescription = ''
A small commandline app written in Go that allows you to easily create and
delete releases of your projects on Github.
In addition it allows you to attach files to those releases.
'';
license = licenses.mit;
homepage = "https://github.com/aktau/github-release";
maintainers = with maintainers; [ ardumont ];
platforms = with platforms; unix;
};
}