mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
95dfa8b8cf
Cuz ew. What could be more ew? Not this really.
Clearly using update-source-version (bash) from a different lang
is better? 😜️
54 lines
926 B
Nix
54 lines
926 B
Nix
{ lib
|
|
, beamPackages
|
|
, makeWrapper
|
|
, common-updater-scripts
|
|
}:
|
|
|
|
let
|
|
|
|
poison_4 = beamPackages.buildMix {
|
|
name = "poison";
|
|
version = "4.0.1";
|
|
|
|
src = beamPackages.fetchHex {
|
|
pkg = "poison";
|
|
version = "4.0.1";
|
|
sha256 = "098gdz7xzfmnjzgnnv80nl4h3zl8l9czqqd132vlnfabxbz3d25s";
|
|
};
|
|
};
|
|
|
|
|
|
in
|
|
|
|
beamPackages.buildMix {
|
|
name = "nixpkgs-github-update";
|
|
version = "0.1.0";
|
|
|
|
src = lib.cleanSource ./.;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
beamDeps = with beamPackages; [ erlang poison_4 ];
|
|
|
|
buildPhase = ''
|
|
export HEX_OFFLINE=1
|
|
export HEX_HOME=`pwd`
|
|
export MIX_ENV=prod
|
|
export MIX_NO_DEPS=1
|
|
|
|
mix escript.build --no-deps-check
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp nixpkgs_github_update $out/bin
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/nixpkgs_github_update \
|
|
--prefix PATH : "${lib.makeBinPath [ common-updater-scripts ]}"
|
|
'';
|
|
}
|