Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 2 additions & 2 deletions doc/languages-frameworks/crystal.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ crystal.buildCrystalPackage rec {
src = fetchFromGitHub {
owner = "mint-lang";
repo = "mint";
rev = version;
tag = version;
hash = "sha256-dFN9l5fgrM/TtOPqlQvUYgixE4KPr629aBmkwdDoq28=";
};

Expand Down Expand Up @@ -65,7 +65,7 @@ crystal.buildCrystalPackage rec {
src = fetchFromGitHub {
owner = "mint-lang";
repo = "mint";
rev = version;
tag = version;
hash = "sha256-dFN9l5fgrM/TtOPqlQvUYgixE4KPr629aBmkwdDoq28=";
};

Expand Down
2 changes: 1 addition & 1 deletion doc/languages-frameworks/dart.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ buildDartApplication rec {
src = fetchFromGitHub {
owner = "sass";
repo = pname;
rev = version;
tag = version;
hash = "sha256-U6enz8yJcc4Wf8m54eYIAnVg/jsGi247Wy8lp1r1wg4=";
};

Expand Down
2 changes: 1 addition & 1 deletion doc/languages-frameworks/dlang.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ buildDubPackage rec {
src = fetchFromGitHub {
owner = "CyberShadow";
repo = "btdu";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-3sSZq+5UJH02IO0Y1yL3BLHDb4lk8k6awb5ZysBQciE=";
};

Expand Down
2 changes: 1 addition & 1 deletion doc/languages-frameworks/go.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following is an example expression using `buildGoModule`:
src = fetchFromGitHub {
owner = "knqyf263";
repo = "pet";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-Gjw1dRrgM8D3G7v6WIM2+50r4HmTXvx0Xxme2fH9TlQ=";
};

Expand Down
2 changes: 1 addition & 1 deletion doc/languages-frameworks/javascript.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ buildNpmPackage rec {
src = fetchFromGitHub {
owner = "jesec";
repo = pname;
rev = "v${version}";
tag = "v${version}";
hash = "sha256-BR+ZGkBBfd0dSQqAvujsbgsEPFYw/ThrylxUbOksYxM=";
};

Expand Down
6 changes: 3 additions & 3 deletions doc/languages-frameworks/rust.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "BurntSushi";
repo = pname;
rev = version;
tag = version;
hash = "sha256-gyWnahj1A+iXUQlQ1O1H1u7K5euYQOld9qWm99Vjaeg=";
};

Expand Down Expand Up @@ -646,7 +646,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Qiskit";
repo = "retworkx";
rev = version;
tag = version;
hash = "sha256-11n30ldg3y3y6qxg3hbj837pnbwjkqw3nxq6frds647mmmprrd20=";
};

Expand Down Expand Up @@ -984,7 +984,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "ripgrep";
rev = version;
tag = version;
hash = "sha256-gyWnahj1A+iXUQlQ1O1H1u7K5euYQOld9qWm99Vjaeg=";
};

Expand Down
2 changes: 1 addition & 1 deletion doc/languages-frameworks/swift.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "nixos";
repo = pname;
rev = version;
tag = version;
hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
};

Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/dokuwiki.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let
src = pkgs.fetchFromGitHub {
owner = "giterlizzi";
repo = "dokuwiki-template-bootstrap3";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-B3Yd4lxdwqfCnfmZdp+i/Mzwn/aEuZ0ovagDxuR6lxo=";
};
installPhase = "mkdir -p $out; cp -R * $out/";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/airwave/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let
airwave-src = fetchFromGitHub {
owner = "phantom-code";
repo = "airwave";
rev = version;
tag = version;
sha256 = "1ban59skw422mak3cp57lj27hgq5d3a4f6y79ysjnamf8rpz9x4s";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/ardour/7.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
# result in an empty archive. See https://tracker.ardour.org/view.php?id=7328 for more info.
src = fetchgit {
url = "git://git.ardour.org/ardour/ardour.git";
rev = version;
tag = version;
hash = "sha256-cmYt6fGYuuVs6YhAXaO9AG6TrYLDVUaE1/iC67rt76I=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/ardour/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ stdenv.mkDerivation rec {
# result in an empty archive. See https://tracker.ardour.org/view.php?id=7328 for more info.
src = fetchgit {
url = "git://git.ardour.org/ardour/ardour.git";
rev = version;
tag = version;
hash = "sha256-z+rIWFVua1IG4GZ8kH3quKaBbN+I7Yr62vukJZk6KAg=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/bucklespring/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "zevv";
repo = pname;
rev = "v${version}";
tag = "v${version}";
sha256 = "0prhqibivxzmz90k79zpwx3c97h8wa61rk5ihi9a5651mnc46mna";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/cmus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "cmus";
repo = "cmus";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-8hgibGtkiwzenMI9YImIApRmw2EzTwE6RhglALpUkp4=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/codecserver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "jketterl";
repo = pname;
rev = version;
tag = version;
sha256 = "sha256-JzaVBFl3JsFNDm4gy1qOKA9uAjUjNeMiI39l5gfH0aE=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/csound/csound-qt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "CsoundQt";
repo = "CsoundQt";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-ZdQwWRAr6AKLmZ/L0lSxIlvWRLoZIKinn7BAQiR+luk=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/deadbeef/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ clangStdenv.mkDerivation {
owner = "DeaDBeeF-Player";
repo = "deadbeef";
fetchSubmodules = true;
rev = version;
tag = version;
hash = "sha256-qa0ULmE15lV2vkyXPNW9kSISQZEANrjwJwykTiifk5Q=";
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "saivert";
repo = "ddb_misc_headerbar_GTK3";
rev = "v${version}";
tag = "v${version}";
sha256 = "1v1schvnps7ypjqgcbqi74a45w8r2gbhrawz7filym22h1qr9wn0";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/deadbeef/plugins/mpris2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "DeaDBeeF-Player";
repo = pname;
rev = "v${version}";
tag = "v${version}";
hash = "sha256-f6iHgwLdzQJJEquyuUQGWFfOfpjH/Hxh9IqQ5HkYrog=";
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "vovochka404";
repo = "deadbeef-statusnotifier-plugin";
rev = "v${version}";
tag = "v${version}";
sha256 = "sha256-6WEbY59vPNrL3W5GUwFQJimmSS+td8Ob+G46fPAxfV4=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/dfasma/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mkDerivation rec {

src = fetchFromGitHub {
sha256 = "09fcyjm0hg3y51fnjax88m93im39nbynxj79ffdknsazmqw9ac0h";
rev = "v${version}";
tag = "v${version}";
repo = "dfasma";
owner = "gillesdegottex";
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/easyaudiosync/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "complexlogic";
repo = "EasyAudioSync";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-UCOL4DzynKjNDvS0HZ4/K+Wn5lOqHZ0bNop0zqJl5kc=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/espeak-ng/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "espeak-ng";
repo = "espeak-ng";
rev = version;
tag = version;
hash = "sha256-aAJ+k+kkOS6k835mEW7BvgAIYGhUHxf7Q4P5cKO8XTk=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/faust/faust2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ let
src = fetchFromGitHub {
owner = "grame-cncm";
repo = "faust";
rev = version;
tag = version;
hash = "sha256-Rn+Cjpk4vttxARrkDSnpKdBdSRtgElsit8zu1BA8Jd4=";
fetchSubmodules = true;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/faust/faustlive.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "grame-cncm";
repo = "faustlive";
rev = version;
tag = version;
hash = "sha256-RqtdDkP63l/30sL5PDocvpar5TI4LdKfeeliSNeOHog=";
fetchSubmodules = true;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/flacon/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "flacon";
repo = "flacon";
rev = "v${version}";
tag = "v${version}";
sha256 = "sha256-r9SdQg6JTMoGxO2xUtkkBe5F5cajnsndZEq20BjJGuU=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/fmit/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ mkDerivation rec {
src = fetchFromGitHub {
owner = "gillesdegottex";
repo = "fmit";
rev = "v${version}";
tag = "v${version}";
sha256 = "1q062pfwz2vr9hbfn29fv54ip3jqfd9r99nhpr8w7mn1csy38azx";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/ft2-clone/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "ft2-clone";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-Xb4LHoon56P6OmHvd7RkODrOc4MDa0+U8npypGhcyw4=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/grandorgue/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "GrandOrgue";
repo = "grandorgue";
rev = version;
tag = version;
fetchSubmodules = true;
hash = "sha256-9H7YpTtv9Y36Nc0WCyRy/ohpOQ3WVUd9gMahnGhANRc=";
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/hydrogen/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "hydrogen-music";
repo = pname;
rev = version;
tag = version;
sha256 = "sha256-OMd8t043JVfMEfRjLdcE/R/4ymGp2yennkCjyX75r8Q=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/jackmix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ mkDerivation rec {
src = fetchFromGitHub {
owner = "kampfschlaefer";
repo = "jackmix";
rev = version;
tag = version;
sha256 = "0p59411vk38lccn24r7nih10jpgg9i46yc26zpc3x13amxwwpd4h";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/jamesdsp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "Audio4Linux";
repo = "JDSP4Linux";
fetchSubmodules = true;
rev = finalAttrs.version;
tag = finalAttrs.version;
hash = "sha256-eVndqIqJ3DRceuFMT++g2riXq0CL5r+TWbvzvaYIfZ8=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/ladspa-plugins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "swh";
repo = "ladspa";
rev = "v${version}";
tag = "v${version}";
sha256 = "sha256-eOtIhNcuItREUShI8JRlBVKfMfovpdfIYu+m37v4KLE=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/librespot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "librespot-org";
repo = "librespot";
rev = "v${version}";
tag = "v${version}";
sha256 = "sha256-dGQDRb7fgIkXelZKa+PdodIs9DxbgEMlVGJjK/hU3Mo=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/linvstmanager/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "Goli4thus";
repo = "linvstmanager";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-K6eugimMy/MZgHYkg+zfF8DDqUuqqoeymxHtcFGu2Uk=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/lmms/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ mkDerivation rec {
src = fetchFromGitHub {
owner = "LMMS";
repo = "lmms";
rev = "v${version}";
tag = "v${version}";
sha256 = "006hwv1pbh3y5whsxkjk20hsbgwkzr4dawz43afq1gil69y7xpda";
fetchSubmodules = true;
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/lpd8editor/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "charlesfleche";
repo = "lpd8editor";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-lRp2RhNiIf1VrryfKqYFSbKG3pktw3M7B49fXVoj+C8=";
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "magnetophon";
repo = "VoiceOfFaust";
rev = version;
tag = version;
sha256 = "sha256-vB8+ymvNuuovFXwOJ3BTIj5mGzCGa1+yhYs4nWMYIxU=";
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "magnetophon";
repo = "faustCompressors";
rev = "v${version}";
tag = "v${version}";
sha256 = "144f6g17q4m50kxzdncsfzdyycdfprnpwdaxcwgxj4jky1xsha1d";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/master_me/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "trummerschlunk";
repo = "master_me";
rev = version;
tag = version;
fetchSubmodules = true;
hash = "sha256-FG3X1dOF9KRHHSnd5/zP+GrYCB2O0y+tnI5/l9tNhyE=";
};
Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/mellowplayer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mkDerivation rec {
src = fetchFromGitLab {
owner = "ColinDuquesnoy";
repo = "MellowPlayer";
rev = version;
tag = version;
hash = "sha256-rsF2xQet7U8d4oGU/HgghvE3vvmkxjlGXPBlLD9mWTk=";
};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/applications/audio/melmatcheq.lv2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "brummer10";
repo = pname;
rev = "v${version}";
tag = "v${version}";
sha256 = "1s805jgb9msxfq9047s7pxrngizb00w8sm4z94iii80ba65rd20x";
};

Expand Down
Loading