1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 21:23:52 +00:00
ultima/modules/home/programs/custom/ctree/pkg.nix

24 lines
532 B
Nix
Raw Normal View History

2024-12-03 14:20:37 +00:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "ctree";
version = "1.0.4";
src = fetchurl {
url =
"https://github.com/gleich/ctree/releases/download/v${version}/ctree_${version}_linux_amd64.tar.gz";
hash = "sha256-2gD6ESzpz9sMJx1iRL438lP4QR/PVCZ5vMqfkpG3e0E=";
};
# installPhase = ''
# mkdir -p $out/bin
# cp foo $out/bin
# '';
meta = with lib; {
homepage = "https://github.com/gleich/ctree";
maintainers = with maintainers; [ azikx ];
mainProgram = "ctree";
};
}