pijul: init at 0.3.0 (re-init)
This commit is contained in:
parent
031332ca9d
commit
ea80c91bd3
30
pkgs/applications/version-management/pijul/default.nix
Normal file
30
pkgs/applications/version-management/pijul/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, rustPlatform, perl, darwin }:
|
||||||
|
|
||||||
|
with rustPlatform;
|
||||||
|
|
||||||
|
buildRustPackage rec {
|
||||||
|
name = "pijul-${version}";
|
||||||
|
version = "0.3";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://pijul.org/releases/${name}.tar.gz";
|
||||||
|
sha256 = "2c7b354b4ab142ac50a85d70c80949ff864377b37727b862d103d3407e2c7818";
|
||||||
|
};
|
||||||
|
|
||||||
|
sourceRoot = "pijul/pijul";
|
||||||
|
|
||||||
|
buildInputs = [ perl ]++ stdenv.lib.optionals stdenv.isDarwin
|
||||||
|
(with darwin.apple_sdk.frameworks; [ Security ]);
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
depsSha256 = "03bb92mn16d38l49x4p1z21k7gvq3l3ki10brr13p7yv45rwvmzc";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A distributed version control system";
|
||||||
|
homepage = https://pijul.org;
|
||||||
|
license = with licenses; [ gpl2Plus ];
|
||||||
|
maintainers = [ maintainers.gal_bolle ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -14713,6 +14713,8 @@ with pkgs;
|
|||||||
|
|
||||||
pig = callPackage ../applications/networking/cluster/pig { };
|
pig = callPackage ../applications/networking/cluster/pig { };
|
||||||
|
|
||||||
|
pijul = callPackage ../applications/version-management/pijul {};
|
||||||
|
|
||||||
planner = callPackage ../applications/office/planner { };
|
planner = callPackage ../applications/office/planner { };
|
||||||
|
|
||||||
playonlinux = callPackage ../applications/misc/playonlinux {
|
playonlinux = callPackage ../applications/misc/playonlinux {
|
||||||
|
Loading…
Reference in New Issue
Block a user