mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
47ace7b0af
`fd "\.nix" pkgs/tools/nix | xargs rg "strictDeps" --files-without-match | xargs rg "buildRust|buildGo|buildPyt|buildNim" --files-without-match | xargs vim -p` checked with Artturin/diffing
24 lines
571 B
Nix
24 lines
571 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dnadd";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JoeLancaster";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1vzbgz8y9gj4lszsx4iczfbrj373sl4wi43j7rp46zfcbw323d4r";
|
|
};
|
|
|
|
strictDeps = true;
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/joelancaster/dnadd";
|
|
description = "Adds packages declaratively on the command line";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ joelancaster ];
|
|
};
|
|
}
|