mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
mt-st: 1.3 -> 1.8
Co-authored-by: emaryn <197520219+emaryn@users.noreply.github.com>
This commit is contained in:
parent
908514a088
commit
680ad73626
1 changed files with 10 additions and 7 deletions
|
@ -1,21 +1,24 @@
|
||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchurl,
|
fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mt-st";
|
pname = "mt-st";
|
||||||
version = "1.3";
|
version = "1.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/iustin/mt-st/releases/download/mt-st-${version}/mt-st-${version}.tar.gz";
|
owner = "iustin";
|
||||||
sha256 = "b552775326a327cdcc076c431c5cbc4f4e235ac7c41aa931ad83f94cccb9f6de";
|
repo = "mt-st";
|
||||||
|
tag = "v${version}";
|
||||||
|
hash = "sha256-Sl+/v+ko3K4npY/M49H1YDxqOMy923qcAkTohi5Xg70=";
|
||||||
};
|
};
|
||||||
|
|
||||||
installFlags = [
|
installFlags = [
|
||||||
"PREFIX=$(out)"
|
"PREFIX="
|
||||||
"EXEC_PREFIX=$(out)"
|
"DESTDIR=$(out)"
|
||||||
|
"COMPLETIONINSTALLDIR=$(out)/share/bash-completion/completions"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue