mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
df202b418d
Follow-up to #85940. There were a couple of issues with the 1.0.M1j-alpha release that were promptly fixed.
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ stdenv, fetchurl, autoPatchelfHook
|
|
, ncurses5, zlib, gmp
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unison-code-manager";
|
|
milestone_id = "M1l";
|
|
version = "1.0.${milestone_id}-alpha";
|
|
|
|
src = if (stdenv.isDarwin) then
|
|
fetchurl {
|
|
url = "https://github.com/unisonweb/unison/releases/download/release/${milestone_id}/unison-osx.tar.gz";
|
|
sha256 = "0qbxakrp3p3k3k8a1m2g24ivs3c8j5rj7ij84i7k548505rva9qr";
|
|
}
|
|
else
|
|
fetchurl {
|
|
url = "https://github.com/unisonweb/unison/releases/download/release/${milestone_id}/unison-linux64.tar.gz";
|
|
sha256 = "152yzv7j4nyp228ngzbhki9fid1xdqrjvl1rwxc05wq30jwwqx0x";
|
|
};
|
|
|
|
# The tarball is just the prebuilt binary, in the archive root.
|
|
sourceRoot = ".";
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
nativeBuildInputs = stdenv.lib.optional (!stdenv.isDarwin) autoPatchelfHook;
|
|
buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [ ncurses5 zlib gmp ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv ucm $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Modern, statically-typed purely functional language";
|
|
homepage = "https://unisonweb.org/";
|
|
license = with licenses; [ mit bsd3 ];
|
|
maintainers = [ maintainers.virusdave ];
|
|
platforms = [ "x86_64-darwin" "x86_64-linux" ];
|
|
};
|
|
}
|