evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / cu / cue2pops / package.nix
blob3cce608ffdc8f523f456c71087b9d43ee159f8c4
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 }:
6 stdenv.mkDerivation {
7   pname = "cue2pops";
8   version = "0-unstable-2023-01-15";
10   src = fetchFromGitHub {
11     owner = "makefu";
12     repo = "cue2pops-linux";
13     rev = "3f2be6126bd50dfe6b998bc8926f88ce9139c19a";
14     hash = "sha256-7rgYvqeH8ZDI8Vc5vnjIhe3Ke0TE1q/iFHEqucanhUM=";
15   };
17   dontConfigure = true;
19   installPhase = ''
20     runHook preInstall
21     install --directory --mode=755 $out/bin
22     install --mode=755 cue2pops $out/bin
23     runHook postInstall
24   '';
26   meta = {
27     description = "Convert CUE to ISO suitable to POPStarter";
28     homepage = "https://github.com/makefu/cue2pops-linux";
29     # Upstream license is unclear.
30     # <https://github.com/ErikAndren/cue2pops-mac/issues/2#issuecomment-673983298>
31     license = lib.licenses.unfree;
32     maintainers = with lib.maintainers; [ AndersonTorres ];
33     platforms = lib.platforms.all;
34     mainProgram = "cue2pops";
35   };