571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
37 lines
970 B
Nix
37 lines
970 B
Nix
{ lib, stdenv, fetchFromGitHub, scsh, feh, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "deco";
|
|
version = "unstable-2019-04-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ebzzry";
|
|
repo = pname;
|
|
rev = "dd8ec7905bc85d085eb2ee3bddabea451054288c";
|
|
sha256 = "sha256-/3GeNvWOCRPOYTUbodXDUxR5QVDEyx6x2Jt5PxsPdvk=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ${pname} $out/bin
|
|
chmod +x $out/bin/${pname}
|
|
'';
|
|
|
|
postFixup = ''
|
|
substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
|
|
substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh"
|
|
substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xorg.xdpyinfo}/bin/xdpyinfo"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ebzzry/deco";
|
|
description = "Simple root image setter";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ebzzry ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "deco";
|
|
};
|
|
|
|
dontBuild = true;
|
|
}
|