mirror of
https://gitlab.com/khumba/nvd.git
synced 2024-11-10 06:59:29 +01:00
Set version to 0.0.1.
This commit is contained in:
parent
709a8a2ed3
commit
0348e04872
1 changed files with 13 additions and 2 deletions
15
default.nix
15
default.nix
|
@ -1,7 +1,10 @@
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
with pkgs;
|
let
|
||||||
|
inherit (pkgs) lib nix-gitignore python3 stdenv;
|
||||||
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "nvd";
|
pname = "nvd";
|
||||||
|
version = "0.0.1";
|
||||||
|
|
||||||
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
|
src = nix-gitignore.gitignoreSourcePure [ ./.gitignore ] ./src;
|
||||||
|
|
||||||
|
@ -19,4 +22,12 @@ stdenv.mkDerivation {
|
||||||
install -m444 -Dt $out/share/man/man1 nvd.1.gz
|
install -m444 -Dt $out/share/man/man1 nvd.1.gz
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Nix/NixOS package version diff tool";
|
||||||
|
homepage = "https://gitlab.com/khumba/nvd";
|
||||||
|
license = lib.licenses.asl20;
|
||||||
|
maintainers = [ lib.maintainers.khumba ];
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue