nixos/pkgs/st/default.nix

38 lines
635 B
Nix
Raw Normal View History

2024-06-13 17:31:49 +01:00
{ pkgs ? import <nixpkgs> { }
, fetchFromGitea ? pkgs.fetchFromGitea
, pkg-config ? pkgs.pkg-config
, libX11 ? pkgs.xorg.libX11
, libXft ? pkgs.xorg.libXft
}:
pkgs.stdenv.mkDerivation {
pname = "st";
name = "st";
src = fetchFromGitea {
domain = "git.bitlab21.com";
owner = "sam";
repo = "st";
2024-10-14 16:57:01 +01:00
rev = "0e926487c85227aad9eed6667b91e149018014b8";
sha256 = "sha256-aUquoUotLKJDxOISIcx0RUybNvBrytc7+EF7PE1MRJU=";
2024-06-13 17:31:49 +01:00
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libX11
libXft
2024-06-13 17:44:06 +01:00
];
2024-06-13 17:31:49 +01:00
buildPhase = ''
make
'';
installPhase = ''
2024-06-13 23:33:14 +01:00
mkdir -p $out/bin
mv st $out/bin
2024-06-13 17:31:49 +01:00
'';
}