mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +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,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mt-st";
|
||||
version = "1.3";
|
||||
version = "1.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/iustin/mt-st/releases/download/mt-st-${version}/mt-st-${version}.tar.gz";
|
||||
sha256 = "b552775326a327cdcc076c431c5cbc4f4e235ac7c41aa931ad83f94cccb9f6de";
|
||||
src = fetchFromGitHub {
|
||||
owner = "iustin";
|
||||
repo = "mt-st";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-Sl+/v+ko3K4npY/M49H1YDxqOMy923qcAkTohi5Xg70=";
|
||||
};
|
||||
|
||||
installFlags = [
|
||||
"PREFIX=$(out)"
|
||||
"EXEC_PREFIX=$(out)"
|
||||
"PREFIX="
|
||||
"DESTDIR=$(out)"
|
||||
"COMPLETIONINSTALLDIR=$(out)/share/bash-completion/completions"
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue