mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
edfd12c836
Also switch source fetch to Sourcehut since it is back online. Also change the package to a fixed-output derivation. This should avoid the need for IFD.
30 lines
705 B
Nix
30 lines
705 B
Nix
{ lib, stdenv, fetchFromSourcehut }:
|
|
|
|
let version = "0.5.1";
|
|
in stdenv.mkDerivation {
|
|
pname = "nix-lib-nmt";
|
|
inherit version;
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~rycee";
|
|
repo = "nmt";
|
|
rev = "v${version}";
|
|
hash = "sha256-krVKx3/u1mDo8qe5qylYgmwAmlAPHa1BSPDzxq09FmI=";
|
|
};
|
|
|
|
outputHashMode = "recursive";
|
|
outputHash = "sha256-N7kGGDDXsXtc1S3Nqw7lCIbnVHtGNNLM1oO+Xe64hSE=";
|
|
|
|
installPhase = ''
|
|
mkdir -pv "$out"
|
|
cp -rv * "$out"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://git.sr.ht/~rycee/nmt";
|
|
description = "A basic test framework for projects using the Nixpkgs module system";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ rycee ];
|
|
};
|
|
}
|